for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
(function(http) {
'use strict';
var ns = faulancer.namespace('docs');
faulancer
/** global: faulancer */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
ns.controller = {
errorAction: function() {
document.getElementById('mainContent').innerHTML = '';
},
documentationAction: function() {
var res = '/contents/landingpage.html';
http.get(res, function(response) {
document.getElementById('mainContent').innerHTML = response;
}, function() {
console.log('Error');
console.log
});
contactAction: function() {
}
};
})(faulancer.namespace('docs.routing.http'));
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.